![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@telerik/kendo-draggable
Advanced tools
A cross-browser/event abstraction that handles mouse and touch drag sequences
A repository for the cross-platform abstraction for drag sequences.
The Kendo UI Draggable component handles mouse drags and touch sequences on mobile devices.
A drag sequence means:
The library is published as a scoped NPM package in the NPMJS Telerik account.
npm install --save '@telerik/kendo-draggable';
The draggable
class constructor accepts an object with three optional event handler callbacks—press
, drag
, and release
.
import Draggable from '@telerik/kendo-draggable';
const draggable = new Draggable({
press: function(e) {
console.log("pressed", e.pageX, e.pageY);
},
drag: function(e) {
console.log("drag", e.pageX, e.pageY);
},
release: function(e) {
console.log("release", e.pageX, e.pageY);
}
});
draggable.bindTo(document.getElementById("my-element"));
The Draggable may be re-bound to another element—the event handlers will be automatically unbound from the previous one.
draggable.bindTo(document.getElementById("another-element"));
The draggable
object persists a reference to the currently bound element. That is why it should be destroyed when or if the corresponding element is removed from the document.
draggable.destroy();
The Kendo UI Draggable supports:
Handling the drag sequence on mobile devices may require the disabling of the touch-based scrolling. The Draggable will not do that out of the box. The recommended way to handle this issue is by setting a touch-action
CSS property. Depending on the type of drags that are handled, you may need touch-action: none
, touch-action: pan-y
, or touch-action: pan-x
.
The
touch-action
setting does not work for iOS yet. While the iOS 9.3 version, which has been released recently, provides limited support,pan-x
andpan-y
do not work. To disable the touch-based scrolling in iOS, prevent thetouchstart
event:
<div ontouchstart="return false">
<div id="my-draggable-element"></div>
</div>
The dragging of elements that contain text activates the browser text selection, which, in most cases, is not desirable. To avoid this behavior, use the user-select: none
CSS property with its respective browser prefixes.
To ignore all touch and pointer events, set mouseOnly
to true
. This is useful when you want to keep the default touch-drag behavior, e.g. horizontal scroll.
import Draggable from '@telerik/kendo-draggable';
const draggable = new Draggable({
mouseOnly: true,
press: function(e) {
console.log("pressed", e.pageX, e.pageY);
},
drag: function(e) {
console.log("drag", e.pageX, e.pageY);
},
release: function(e) {
console.log("release", e.pageX, e.pageY);
}
});
draggable.bindTo(document.getElementById("my-element"));
FAQs
A cross-browser/event abstraction that handles mouse and touch drag sequences
The npm package @telerik/kendo-draggable receives a total of 0 weekly downloads. As such, @telerik/kendo-draggable popularity was classified as not popular.
We found that @telerik/kendo-draggable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.